home *** CD-ROM | disk | FTP | other *** search
- #if defined( Uses_THeapApp ) && !defined( __THeapApp )
- #define __THeapApp
-
- /*---------------------------------------------------------*/
- /* */
- /* Turbo Vision 1.0 */
- /* Copyright (c) 1991 by Borland International */
- /* */
- /* Class THeapView heap display */
- /*---------------------------------------------------------*/
-
- class THeapView : public TView
- {
-
- public:
-
- THeapView( TRect& r );
- virtual void update();
- virtual void draw();
- virtual long heapSize();
-
- private:
-
- long oldMem, newMem;
- char heapStr[16];
-
- };
-
- class THeapApp : public TApplication
- {
- public:
-
- THeapApp();
-
- virtual void idle();
-
- protected:
-
- THeapView *heap;
- };
-
- #endif
-